home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E37.CC < prev    next >
C/C++ Source or Header  |  1991-04-28  |  259b  |  20 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_37()
  5. {
  6.   if (modrm > 0277)
  7.   {
  8.     emu_bad();
  9.   }
  10.   else
  11.   {
  12.     // fstp m80real
  13.     if (empty())
  14.       return;
  15.     r_mov(st(), (long double *)get_modrm());
  16.     st().tag = TW_E;
  17.     top++;
  18.   }
  19. }
  20.